Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | import { NextResponse } from 'next/server' import { withAuth } from '@/lib/auth/withAuth' import { assetStore } from '@/lib/asset-store' export const GET = withAuth(async (_request, { params }) => { try { const { id } = (await params) as { id: string } console.log('🔍 Looking for asset:', id) console.log('📦 Available assets:', await assetStore.keys()) // Get asset from store const asset = await assetStore.get(id) if (!asset) { console.log('❌ Asset not found in store') return NextResponse.json( { error: 'Asset not found or expired', }, { status: 404 } ) } console.log('✅ Asset found, serving download') // Return file with appropriate headers return new NextResponse(new Uint8Array(asset.data), { status: 200, headers: { 'Content-Type': asset.mimeType, 'Content-Disposition': `attachment; filename="${asset.filename}"`, 'Content-Length': asset.data.length.toString(), 'Cache-Control': 'private, no-cache, no-store, must-revalidate', Expires: '0', Pragma: 'no-cache', }, }) } catch (error) { console.error('❌ Download failed:', error) return NextResponse.json( { error: 'Failed to download file', }, { status: 500 } ) } }) |